home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / tagcalls / bullet.inc < prev    next >
Text File  |  1998-06-24  |  581b  |  28 lines

  1. pattern ObtainInfo(_glyphEngine, ...) is
  2.     push a6;
  3.     push.l ...;
  4.     safe a0:=_glyphEngine; a1:=sp;;
  5.     a6:=BulletBase; jsr [a6-48];
  6.     sp:=sp+countof(...)<<2;
  7.     pop a6;
  8. endp;                                                            # OBTAININFO
  9.  
  10. pattern ReleaseInfo(_glyphEngine, ...) is
  11.     push a6;
  12.     push.l ...;
  13.     safe a0:=_glyphEngine; a1:=sp;;
  14.     a6:=BulletBase; jsr [a6-54];
  15.     sp:=sp+countof(...)<<2;
  16.     pop a6;
  17. endp;                                                            # RELEASEINFO
  18.  
  19. pattern SetInfo(_glyphEngine, ...) is
  20.     push a6;
  21.     push.l ...;
  22.     safe a0:=_glyphEngine; a1:=sp;;
  23.     a6:=BulletBase; jsr [a6-42];
  24.     sp:=sp+countof(...)<<2;
  25.     pop a6;
  26. endp;                                                            # SETINFO
  27.  
  28.